summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/olsc/olsc_service_for_application.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/olsc/olsc_service_for_application.h')
-rw-r--r--src/core/hle/service/olsc/olsc_service_for_application.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/hle/service/olsc/olsc_service_for_application.h b/src/core/hle/service/olsc/olsc_service_for_application.h
new file mode 100644
index 000000000..29074054b
--- /dev/null
+++ b/src/core/hle/service/olsc/olsc_service_for_application.h
@@ -0,0 +1,21 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/service/service.h"
+
+namespace Service::OLSC {
+
+class IOlscServiceForApplication final : public ServiceFramework<IOlscServiceForApplication> {
+public:
+ explicit IOlscServiceForApplication(Core::System& system_);
+ ~IOlscServiceForApplication() override;
+
+private:
+ void Initialize(HLERequestContext& ctx);
+ void GetSaveDataBackupSetting(HLERequestContext& ctx);
+ void SetSaveDataBackupSettingEnabled(HLERequestContext& ctx);
+
+ bool initialized{};
+};
+
+} // namespace Service::OLSC